home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / nan_news / vol3 / no1 / memo_prn.prg < prev    next >
Text File  |  1988-08-09  |  333b  |  16 lines

  1. * Function: MemoPrn
  2. * Author:   Ray Love and Laurie Miller
  3. * Version:  Clipper Summer 87
  4. * Copyright (c) 1988 Nantucket Corp.
  5. *
  6. * Purpose:  To print text formatted.
  7.  
  8. FUNCTION MemoPrn
  9. PRIVATE text, width, line
  10. PARAMETER text, width
  11.  
  12. FOR line = 1 TO MLCOUNT(text,width)
  13.    ? MEMOLINE(text,width,line)
  14. NEXT
  15. RETURN ""   
  16.